home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tutorii.zip / BIF.DAT < prev    next >
Text File  |  1991-11-29  |  387b  |  14 lines

  1. Explanation of the IF command. It is a 
  2. BATCH command.
  3.  
  4. This command lets you work with conditional 
  5. statements in your batch file.
  6.  
  7. Example:
  8.        If you want your batch file to display 
  9.        an error message if it can't find the 
  10.        Test.Bat file you use this in your
  11.        batch file:
  12.            if not exist test.bat then echo 
  13.            Can't find data file.
  14.